home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000344_news@columbia.edu _Thu Feb 22 14:46:36 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA21699
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 22 Feb 2001 14:46:33 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA17407
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 22 Feb 2001 14:46:27 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA06460
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 22 Feb 2001 14:40:54 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: interfacing to FANUC CNC controller
  14. Date: 22 Feb 2001 19:40:54 GMT
  15. Organization: Columbia University
  16. Message-ID: <973q06$69p$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <YDdl6.297934$w35.48967784@news1.rdc1.nj.home.com>,
  20. dls2 <dlshearer@home.com> wrote:
  21. : "Frank da Cruz" <fdc@watsun.cc.columbia.edu> wrote:
  22. : > dls2 <dlshearer@home.com> wrote:
  23. : > : "Frank da Cruz" <fdc@watsun.cc.columbia.edu> wrote:
  24. : > : ...
  25. : > : > So try this:
  26. : > : >
  27. : > : >   set xmit prompt 20  ; 20 is the ASCII (decimal) code
  28. : > : > for Ctrl-T.
  29. : > :
  30. : > So did you try it?
  31. : Yes, setting the xmit prompt to 20 does not work, but setting
  32. : the xmit prompt to 0 does work, for preventing transfer time-
  33. : outs from occuring; so, that problem is solved, but I am still
  34. : having DC (Device Control) characters appear at the start
  35. : and stop of each session log.
  36. That means the device is sending them.
  37.  
  38. : DC (Device Control) characters do not appear on the terminal
  39. : screen...
  40. :
  41. Because they are invisible.  They would appear if you used Alt-D
  42. to put the terminal screen in debug mode.
  43.  
  44. : but do appear in the session log.  Shouldn't the DC
  45. : (Device Control) characters be stripped out of the session log,
  46. : the same as for the terminal screen, having been interpreted
  47. : as XON/XOFF signaling, rather than as textual content?
  48. :
  49. But you said the DC characters were Ctrl-R and Ctrl-T.  Those are
  50. not Xon and Xoff.  Xon is Ctrl-Q, Xoff is Ctrl-S.  Kermit is doing
  51. its job.
  52.  
  53. - Frank